home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xrubik / Rubik.h < prev    next >
C/C++ Source or Header  |  1996-02-05  |  2KB  |  88 lines

  1. /*
  2. # X-BASED RUBIK'S CUBE(tm)
  3. #
  4. #  Rubik.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1994 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Rubik */
  27.  
  28. #ifndef _XtRubik_h
  29. #define _XtRubik_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Rubik Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNsize "size"
  39. #define XtNorient "orient"
  40. #define XtNmono "mono"
  41. #define XtNface "face"
  42. #define XtNpos "pos"
  43. #define XtNdirection "direction"
  44. #define XtNpractice "practice"
  45. #define XtNstart "start"
  46. #define XtNpieceBorder "pieceBorder"
  47. #define XtNfaceColor0 "faceColor0"
  48. #define XtNfaceColor1 "faceColor1"
  49. #define XtNfaceColor2 "faceColor2"
  50. #define XtNfaceColor3 "faceColor3"
  51. #define XtNfaceColor4 "faceColor4"
  52. #define XtNfaceColor5 "faceColor5"
  53. #define XtCSize "Size"
  54. #define XtCOrient "Orient"
  55. #define XtCMono "Mono"
  56. #define XtCFace "Face"
  57. #define XtCPos "Pos"
  58. #define XtCDirection "Direction"
  59.  
  60. #define RUBIK_RESTORE (-4)
  61. #define RUBIK_RESET (-3)
  62. #define RUBIK_ILLEGAL (-2)
  63. #define RUBIK_IGNORE (-1)
  64. #define RUBIK_MOVED 0
  65. #define RUBIK_CONTROL 1
  66. #define RUBIK_SOLVED 2
  67. #define RUBIK_PRACTICE 3
  68. #define RUBIK_RANDOMIZE 4
  69. #define RUBIK_DEC 5
  70. #define RUBIK_ORIENT 6
  71. #define RUBIK_INC 7
  72. #define RUBIK_COMPUTED 8
  73. #define RUBIK_UNDO 9
  74.  
  75. typedef struct _RubikClassRec *RubikWidgetClass;
  76. typedef struct _RubikRec *RubikWidget;
  77.  
  78. extern WidgetClass rubikWidgetClass;
  79.  
  80. typedef struct {
  81.   XEvent *event;
  82.   int reason;
  83.   int face, position, direction;
  84. } rubikCallbackStruct;
  85.  
  86. #endif _XtRubik_h
  87. /* DON'T ADD STUFF AFTER THIS #endif */
  88.